home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / csr_001.arc / ERRORS.H < prev    next >
Text File  |  1988-09-02  |  768b  |  34 lines

  1. /*
  2. **  E R R O R S . H
  3. **
  4. **  DOS Standard Errors returned in AX.
  5. **
  6. **  For C Spot Run C Add-On Library, data from Norton's book.
  7. **
  8. **  Created: 05/05/86   Last Updated: 05/05/86
  9. **
  10. */
  11.  
  12. static char *dos_error[19] = 
  13.  {
  14.   "",
  15.   "Invalid function number",
  16.   "File not found",
  17.   "Path not found",
  18.   "No handle available: all in use",
  19.   "Access denied",
  20.   "Invalid handle",
  21.   "Memory control blocks destroyed",
  22.   "Insuffiecient memory",
  23.   "Invalid memory block address",
  24.   "Invalid environment",
  25.   "Invalid format",
  26.   "Invalid access code",
  27.   "Invalid data",
  28.   "",
  29.   "Invalid drive specification",
  30.   "Attempt to remove current directory",
  31.   "Not same device",
  32.   "No more files to be found"
  33.  };
  34.